home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / spmate13.zip / FILEMENU.RC$ / filemenu.rc
Text File  |  1993-07-13  |  932b  |  44 lines

  1. // ObjectWindows - (C) Copyright 1992 by Borland International
  2.  
  3. FILECOMMANDS MENU 
  4. BEGIN
  5.     POPUP "&File"
  6.     BEGIN
  7.         MENUITEM "&New", CM_FILENEW
  8.         MENUITEM "&Open...", CM_FILEOPEN
  9.         MENUITEM "&Save", CM_FILESAVE
  10.         MENUITEM "Save &As...", CM_FILESAVEAS
  11.         MENUITEM SEPARATOR
  12.         MENUITEM "E&xit", CM_EXIT
  13.     END
  14.  
  15.     POPUP "&Edit"
  16.     BEGIN
  17.         MENUITEM "&Undo\aAlt+BkSp", CM_EDITUNDO
  18.         MENUITEM SEPARATOR
  19.         MENUITEM "&Cut\aShift+Del", CM_EDITCUT
  20.         MENUITEM "C&opy\aCtrl+Ins", CM_EDITCOPY
  21.         MENUITEM "&Paste\aShift+Ins", CM_EDITPASTE
  22.         MENUITEM "&Delete\aDel", CM_EDITDELETE
  23.         MENUITEM "C&lear All\aCtrl+Del", CM_EDITCLEAR
  24.     END
  25.  
  26.     POPUP "&Search"
  27.     BEGIN
  28.         MENUITEM "&Find...", CM_EDITFIND
  29.         MENUITEM "&Replace...", CM_EDITREPLACE
  30.         MENUITEM "&Next\aF3", CM_EDITFINDNEXT
  31.     END
  32.  
  33.     POPUP "&Tools"
  34.     BEGIN
  35.         MENUITEM "&Spell Check", CM_TOOLSSPELL
  36.     END
  37.  
  38.     POPUP "&Help"
  39.     BEGIN
  40.         MENUITEM "&About", CM_ABOUT
  41.     END
  42.  
  43. END
  44.